home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 124 / MOBICLIC 124.ISO / mac / Milan.swf / scripts / __Packages / prod / hclasses / Trace / TraceBoxAlerte.as < prev   
Text File  |  2010-05-11  |  661b  |  32 lines

  1. class prod.hclasses.Trace.TraceBoxAlerte extends MovieClip
  2. {
  3.    function TraceBoxAlerte()
  4.    {
  5.       super();
  6.       this.Init();
  7.    }
  8.    function Init()
  9.    {
  10.       trace("Init()" + this);
  11.       this._visible = false;
  12.       this.BTNfermer.onPress = function()
  13.       {
  14.          this._parent._visible = false;
  15.          this.message_txt.text = "";
  16.       };
  17.       this.FOND.onPress = function()
  18.       {
  19.          this.startDrag(false);
  20.       };
  21.       this.FOND.onRelease = function()
  22.       {
  23.          this.stopDrag();
  24.       };
  25.    }
  26.    function Afficher(mess)
  27.    {
  28.       this.message_txt.text += mess;
  29.       this._visible = true;
  30.    }
  31. }
  32.